home *** CD-ROM | disk | FTP | other *** search
/ Bath / Bath CDROM.iso / pc / SYSCHECK.DXR / 00016.ls < prev    next >
Encoding:
Text File  |  2001-07-26  |  216 b   |  15 lines

  1. global startTime
  2.  
  3. on exitFrame
  4.   if (the milliSeconds - startTime) > 5000 then
  5.     quit()
  6.   end if
  7.   go(the frame)
  8. end
  9.  
  10. on wait amount
  11.   start = the ticks
  12.   repeat while (the ticks - start) < amount
  13.   end repeat
  14. end
  15.